home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 1 / MacMania 1.toast / Games / • Strategy • / Robot Battle 1.1d / Radar Love ][ < prev    next >
Text File  |  1991-04-21  |  634b  |  30 lines

  1. `  RADAR LOVE.  Simply locks on quickly and fires.  
  2. `  Kicks SITTING DUCKs feathered butt consistently.
  3.  
  4. `  TES  3-21-89
  5. 10 equip 0 5 0 0 0 300
  6.  
  7. `  Find if enemy is above or below...
  8. 15 swivel 180
  9. 20 objectscan 90
  10. 30 if range=0 then goto15
  11.  
  12. `  Find the 10 degree arc that the enemy is within...
  13. 40 let fred = 0-95
  14. 50 swivel fred
  15. 60 swivel 10
  16. 70 objectscan 5
  17. 80if range=0 then goto 60
  18.  
  19. `  Narrow it down to the exact angle...
  20. 90 let george = 0 - 6
  21. 100 swivel george
  22. 110 swivel 1
  23. 120 objectscan 0
  24. 130 if range=0 then goto 110
  25.  
  26. `  And nail him with the hard stuff.
  27. 190 launch
  28. 200 objectscan 0
  29. 210 if range = 0  then goto 20
  30. 220 goto 190